home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Special 16 / AMIGAplus Sonderheft 16 (1998)(ICP)(DE)[!].iso / pd / anwendungen / micropaint / install-micropaint_ger < prev    next >
Text File  |  1998-08-09  |  1KB  |  62 lines

  1. ; $VER: InstallMicroPaint 2.00
  2. ; FR-SoftWorks MicroPaint Installer Script
  3. ; Copyright © FR-SoftWorks 1998
  4.  
  5. (working "Installiere MicroPaint")
  6.  
  7. (set DestDir
  8.    (askdir
  9.       (prompt "Wohin möchten Sie MicroPaint installieren?")
  10.       (help "Eine Schublade für das Programm wird automatisch erstellt.")
  11.       (default "SYS:")
  12.    )
  13. )
  14.  
  15. (set DestDir (expandpath DestDir))
  16. (set @default-dest (tackon DestDir "MicroPaint"))
  17.  
  18. (makedir @default-dest (infos))
  19.  
  20. (copyfiles
  21.    (source "dist")
  22.    (dest @default-dest)
  23.    (all)
  24.    (infos)
  25. )
  26.  
  27. (copyfiles
  28.     (prompt "Kopiere CBSI")
  29.     (help "CBSI steht für 'Crossbones Systeminformation'.\n\nDieses Utility untersucht unter anderem:\n\n· Prozessor, Coprozessor\n· Grafikchipsatz\n· Betriebssystem\n· Geschwindigkeit des Computers\n· Datendurchsatz der Festplatte")
  30.     (source "GER")
  31.     (dest "C:")
  32.     (all)
  33.     (infos)
  34.     (optional "nofail" "force")
  35.     (confirm)
  36. )
  37.  
  38. (copylib
  39.     (prompt "Kopiere cxb.library")
  40.     (help "Diese Bibliotheksdatei ist erforderlich.")
  41.     (source "cxb.library")
  42.     (dest "LIBS:")
  43.     (optional "nofail")
  44.     (confirm)
  45.     )
  46.  
  47. (copyfiles
  48.     (prompt "Kopiere Katalogdateien")
  49.     (help "Die Katalogdateien müssen dann installiert werden, wenn die Benutzeroberfläche nicht in englischer Sprache erscheinen soll.")
  50.     (source "Catalogs")
  51.     (dest "LOCALE:Catalogs")
  52.     (all)
  53.     (infos)
  54.     (optional "nofail" "force")
  55.     (confirm)
  56. )
  57.  
  58. (message "\nInstallation abgeschlossen.\n")
  59.  
  60. (exit (quiet))
  61.  
  62.